home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / GameKit / Apps / HighScoreEditor / HighScoreEditor.h < prev    next >
Text File  |  1995-06-12  |  285b  |  21 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface HighScoreEditor:Object
  5. {
  6.     id    connectWindow;
  7.     id    highScoreController;
  8.     id    gameNameText;
  9.     id    serverNameText;
  10.     id    connectButton;
  11.     id    stringTable;
  12.     BOOL connected;
  13. }
  14.  
  15. - init;
  16. - connectToggle:sender;
  17. - disconnect:sender;
  18. - connect:sender;
  19.  
  20. @end
  21.